Skip to content

chore(deps): update dependency docusaurus-plugin-llms to ^0.4.0#2500

Merged
thomhurst merged 1 commit intomainfrom
renovate/docusaurus
Apr 20, 2026
Merged

chore(deps): update dependency docusaurus-plugin-llms to ^0.4.0#2500
thomhurst merged 1 commit intomainfrom
renovate/docusaurus

Conversation

@thomhurst
Copy link
Copy Markdown
Owner

This PR contains the following updates:

Package Change Age Confidence
docusaurus-plugin-llms ^0.3.1^0.4.0 age confidence

Release Notes

rachfop/docusaurus-plugin-llms (docusaurus-plugin-llms)

v0.4.0

Compare Source

What's New

  • Append .md to llms.txt link URLs — Per the llmstxt.org spec, links in llms.txt now point to markdown versions of pages (e.g. /docs/intro.md instead of /docs/intro/). (#​38)
  • Fix import/export in descriptions.mdx files starting with import or export statements no longer use those lines as page descriptions. (#​39)
  • Added test coverage for import/export description extraction fix. (#​40)

Breaking Change

addMdExtension defaults to true. All link URLs in generated llms.txt files will now have .md appended. To preserve the previous behavior, set addMdExtension: false in your plugin config.

Full Changelog: rachfop/docusaurus-plugin-llms@v0.3.1...v0.4.0


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@thomhurst thomhurst added dependencies Pull requests that update a dependency file MINOR renovate-bot labels Apr 20, 2026
@thomhurst thomhurst enabled auto-merge (squash) April 20, 2026 18:51
Copy link
Copy Markdown

@claude claude Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Dependency Update: docusaurus-plugin-llms ^0.3.1 → ^0.4.0

This is a straightforward Renovate-managed dependency bump, and the lockfile update looks correct. However, there's a breaking change in v0.4.0 that warrants attention before merging.

Breaking Change: addMdExtension now defaults to true

From the release notes:

addMdExtension defaults to true. All link URLs in generated llms.txt files will now have .md appended. To preserve the previous behavior, set addMdExtension: false in your plugin config.

The current plugin configuration in docs/docusaurus.config.ts does not set addMdExtension, so this upgrade will silently change the behavior of the generated llms.txt file:

// docs/docusaurus.config.ts (lines 10-19)
plugins: [
  [
    'docusaurus-plugin-llms',
    {
      generateLLMsTxt: true,
      generateLLMsFullTxt: true,
      title: 'Modular Pipelines Documentation',
      description: '...',
      // addMdExtension is NOT set — will now default to true
    },
  ],
],

After this update, links in llms.txt will change from:

  • https://thomhurst.github.io/ModularPipelines/docs/intro/

to:

  • https://thomhurst.github.io/ModularPipelines/docs/intro.md

GitHub Pages does not serve .md files, so those links would return 404s when followed by LLM crawlers.

Recommendation

Explicitly opt out of the new behavior to preserve the working link format:

plugins: [
  [
    'docusaurus-plugin-llms',
    {
      generateLLMsTxt: true,
      generateLLMsFullTxt: true,
      addMdExtension: false,  // preserve pre-0.4.0 behavior; .md URLs 404 on GitHub Pages
      title: 'Modular Pipelines Documentation',
      description: '...',
    },
  ],
],

Alternatively, if the new .md-appended links are intentional (e.g., GitHub Pages is configured to handle them), adding addMdExtension: true explicitly makes the intent clear. Either way, the option should be set explicitly so future readers understand this was a conscious decision, not an oversight.

@codacy-production
Copy link
Copy Markdown

Up to standards ✅

🟢 Issues 0 issues

Results:
0 new issues

View in Codacy

TIP This summary will be updated as you push new changes. Give us feedback

@thomhurst thomhurst merged commit 490223a into main Apr 20, 2026
11 of 12 checks passed
@thomhurst thomhurst deleted the renovate/docusaurus branch April 20, 2026 19:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file MINOR renovate-bot

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants